import { LocalPropsWithChildren } from "@/types"; import { Button, Input } from "@nextui-org/react"; import { useTranslations } from "next-intl"; import { FC } from "react"; const App: FC = (props) => { const t = useTranslations("global"); return (
); }; export default App;